home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT-D.SPK / lclint / guide / unique.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-26  |  124 b   |  10 lines

  1. # include <string.h>
  2.  
  3. void  
  4. capitalize (/*@out@*/ char *s,
  5.             char *t)
  6. {
  7.   strcpy (s, t);
  8.   *s = toupper (*s);
  9. }
  10.